home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / Apple II / Apple II Sample Code / Sample Code Notes (ProDOS) / SCN17Darts < prev    next >
Encoding:
Text File  |  1990-06-24  |  2.7 KB  |  61 lines  |  [TEXT/pdos]

  1. Apple II
  2. Sample Code Notes
  3. _____________________________________________________________________________
  4.                                                   Developer Technical Support
  5.  
  6. #17:    Darts
  7.  
  8. Version:    3.0                                                     June 1990
  9.  
  10. APW Components
  11.  
  12. Assembly:            C:                Pascal:        Rez:
  13. Darts.asm            Darts.c           Darts.p        Darts.rez
  14. Darts.equ            Darts.h           Darts.r
  15. UEvent.asm           UEvent.c          UEvent.Inc.p
  16. UGlobals.asm         UGlobals.c        UEvent.p
  17. UMenu.asm            UMenu.c           UGlobals.Inc.p
  18. UWindow.asm          UUtils.c          UGlobals.p
  19. Build                UWindow.c         UMenu.Inc.p
  20. Build.r              Build             UMenu.p
  21. Build.Macros         Build.r           UUtils.Inc.p
  22. Full.Build           Full.Build        UUtils.p
  23.                                        UWindow.Inc.p
  24.                                        UWindow.p
  25.  
  26. MPW Components:
  27.  
  28. Assembly:            C:                Pascal:
  29. Darts.Aii            Darts.c           Darts.p
  30. Darts.equ            Darts.h           Darts.r
  31. Darts.r              Darts.r           UEvent.Inc.p
  32. UEvent.Aii           UEvent.c          UEvent.p
  33. UGlobals.Aii         UGlobals.c        UGlobals.Inc.p
  34. UMenu.Aii            UMenu.c           UGlobals.p
  35. UWindow.Aii          UUtils.c          UMenu.Inc.p
  36. MakeFile             UWindow.c         UMenu.p
  37.                      MakeFile          UUtils.Inc.p
  38.                                        UUtils.p
  39.                                        UWindow.Inc.p
  40.                                        UWindow.p
  41.                                        MakeFile
  42.  
  43. This sample demonstrates general uses of new System Software 5.0 features, and 
  44. how much simpler things are to use while showing a realistic application.  It 
  45. also show how to use the new List Manager calls.
  46. _____________________________________________________________________________
  47.  
  48. APW 65816 assembly language users need APW v.1.0, APW Tools & Interfaces 
  49. v.1.1, and Apple IIGS System Software 5.0.2 or later.  APW C language users 
  50. additionally need APW C v.1.0.  Four APW command files, Full.Build, Build, 
  51. Build.r, and Build.Macros allow you to perform complete or partial rebuilds of 
  52. the load file Darts.  Darts.p, included on the APW disk, is the MPW IIGS 
  53. Pascal source code.  It is included so Pascal programmers using native IIGS 
  54. Pascal development environments can easily port this code to their development 
  55. environment.
  56.  
  57. MPW IIGS users need MPW v.3.0, MPW IIGS Tools v.1.1, and either MPW IIGS 
  58. Assembler v.1.0 or later, or MPW IIGS C v.1.0 or later, or MPW IIGS Pascal 
  59. v.1.0 or later.  The name needed by the MPW Build menu's Build option can be 
  60. found in the MakeFile.
  61.